- overridden method
- Программирование: переопределённый метод
Универсальный англо-русский словарь. Академик.ру. 2011.
Универсальный англо-русский словарь. Академик.ру. 2011.
Method overriding — Method overriding, in object oriented programming, is a language feature that allows a subclass or child class to provide a specific implementation of a method that is already provided by one of its superclasses or parent classes. The… … Wikipedia
Method overriding (programming) — Method overriding, in object oriented programming, is a language feature that allows a subclass to provide a specific implementation of a method that is already provided by one of its superclasses. The implementation in the subclass overrides… … Wikipedia
Method (computer programming) — In object oriented programming, a method is a subroutine (or procedure or function) associated with a class. Methods define the behavior to be exhibited by instances of the associated class at program run time. Methods have the special property… … Wikipedia
Method (computer science) — In object oriented programming, the term method refers to a subroutine that is exclusively associated either with a class (called class methods, static methods, or factory methods) or with an object (called instance methods). Like a procedure in… … Wikipedia
Factory method pattern — Factory method in UML Facto … Wikipedia
Virtual method table — A virtual method table, virtual function table, dispatch table, or vtable, is a mechanism used in programming language to support dynamic dispatch (or run time method binding).Suppose a program contains several classes in an inheritance hierarchy … Wikipedia
Comparison of C Sharp and Java — The correct title of this article is Comparison of C# and Java. The substitution or omission of the # sign is because of technical restrictions. Programming language comparisons General comparison Basic syntax Basic instructions … Wikipedia
Call super — is a code smell or anti pattern of object oriented programming, i.e. a bad solution to a common design problem. Call super requires users of a particular interface to override the method of a superclass and call the overridden from the overriding … Wikipedia
Covariant return type — In object oriented programming, a covariant return type of a method is one that can be replaced by a narrower type when the method is overridden in a subclass. Covariant return types have been (partially) allowed in the Java language since the… … Wikipedia
Javadoc — is a documentation generator from Sun Microsystems for generating API documentation in HTML format from Java source code. The doc comments format used by Javadoc is the de facto industry standard for documenting Java classes. Some IDEs,[1] such… … Wikipedia
Decorator pattern — Not to be confused with the concept of decorators in Python. In object oriented programming, the decorator pattern is a design pattern that allows behaviour to be added to an existing object dynamically. Contents 1 Introduction 2 Motivation 3… … Wikipedia